Barony Save Editor

- A simple web-based savegame editor for Barony

Before you start:

This editor does not change your original save file, but it is still recommended that you back your original save file up to another folder just in case so you don't overwrite it by accident!

Begin by selecting the savegame you wish to edit using the control below, then click the button to load it. Or create a new save file using the other button.

Tested on Barony version 5.01 (Steam)

Note: Saved games are usually located within the game folder (..\Barony\savegames\)

OR

Once you have loaded/created your game, you should see a table of values that you can edit below.

Edit the values, then click the button at the bottom of the page to export your new save file!

General game information

Editing some of these without knowing what you are doing will probably corrupt the save file (resetting to character creation may happen). "Game Key", "Lobby Key", and "Game Hash" may be unique to your game so use the values from one of your saved games or it probably won't work.

{{["None", "Online", "Local", "LAN"][saveData.multiplayer_type]}}

Players connected:
1: 2: 3: 4:

{{player.stats.name ? player.stats.name : "Player " + (player.playerNum + 1)}}

General stats

It's probably better to set experience instead of level to level up dynamically (100 per level, level possibly capped to 255). Setting race/class does not change equipment, spells, etc, but may have other effects.

Setting your character to an expansion class or race that you do not own/have installed will probably break something - be warned!

{{sexes[player.stats.sex]}}
{{races[player.race]}}
{{classes[player.char_class]}}

Attributes

Attributes, higher is better what else can I say?

Proficiencies

Proficiencies go from 0-100 (integer), higher is better.

Status effects

Check the relevant box if the effect should be ON. Leave the timer at 0 if you want the effect to be on forever!

Spells known

{{spells[spell]}}

Carried inventory

Add/Remove items from carried inventory:
Most are self explanatory, but good to know:
  • Setting a positive bonus blesses an item, and a negative bonus will curse an item
  • Adding more than one of the same type of gear will make the game think they are all the same until you drop/pick up the items
  • To remove an item, make sure amount, quality, item, and bonus match exactly what you're trying to remove (removes one at a time)
Items in carried inventory:
This is what is in your carried inventory, written as: "amount" "quality" "item" "(bonus)". Please forgive that the quality-prefix doesn't match the in-game description other than for equipment. There are 30 inventory slots in total (not counting backpack slots if present), which is enough to overburden most if not careful.

{{item.count + " " + quality[item.status] + " " + items[item.type] + " (" + item.beatitude + ")"}}